home *** CD-ROM | disk | FTP | other *** search
/ PC Open 93 / PC Open 93 CD 2.bin / PDF / webdeveloper / lezione_1 / datautente.asp < prev    next >
Encoding:
Text File  |  2003-08-25  |  306 b   |  15 lines

  1. <%@ language="vbscript" %>
  2. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  3. <html>
  4. <head><title>La mia prima pagina Asp</title></head>
  5. <body>
  6.  
  7. <% if hour(now()) < 16 Then %>
  8. Buongiorno!
  9. <% else %>
  10. Buonasera!
  11. <% end if %>
  12.  
  13. </body>
  14. </html>
  15.